Restrict public access to your php.ini Updated on August 16, 2021 by InMotion Hosting Contributor 1 Minutes, 24 Seconds to Read By default the php.ini file is stored in the public_html folder on your server. When you visit your domain and add /php.ini at the end of it like the following: https://your-domaincom/php.ini You will see the contents of your PHP configuration available over the internet. See the image to the right. To secure your php.ini settings so they are not publicly viewable, you can restrict access to the php.ini and other file types with the following code in your .htaccess. <filesMatch ".(htaccess|htpasswd|ini|phps|fla|psd|log|sh)$"> Order Allow,Deny Deny from all </filesMatch> The parameters “htaccess|htpasswd|ini|phps|fla|psd|log|sh” in the code will restrict anyone trying to see the following file types. .htaccess .htpasswd .ini .phps .fla .psd .log .sh You can add more file types to the restriction by separating each file type in the code with a | and adding the file extension without the ( . ). The following steps explain how to restrict files access to your pip.ini and other secure files types. Restricting access to the php.ini and other file types Login into your cPanel. Go to the File Manager. Select your public_html web root and click Go. Find your .htaccess file and edit it with a code editor. Place the following code in your .htaccess. <filesMatch ".(htaccess|htpasswd|ini|phps|fla|psd|log|sh)$"> Order Allow,Deny Deny from all </filesMatch> Save the changes. Now when you visit your php.ini in your browser you will get a “Not found” error. For more information on our .htaccess tutorials, please see our .htaccess file reference list. Share this Article Related Articles How To Create a PHP Redirect (301, 302, and Dynamic Redirect Examples) Connect to SFTP for Shared Hosting Accounts Using FileZilla FTP Basics for Dedicated Servers How to Install Jekyll and Launch a New Site How to Host AI-Prompt Generated Websites on Shared Hosting What is your default PHP.ini file? Getting Started Guide: FTP Configuring your site in WS_FTP Schedule Social Media Posts With Buffer FTP Error – 421 Too Many Connections
Thank you so much! THis has been one of the best things I’ve seen on here. It didn’t show up in the search, however, so maybe put it explicitly somewhere else? Anyway, thanks so much!